home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac Format 1994 October
/
Macformat17.cdr
/
Shareware City
/
Developers
/
MacAppMods1.0d3
/
MacAppHeaders.cp
< prev
next >
Wrap
Text File
|
1994-06-25
|
4KB
|
170 lines
//Changed to add debugging defines MEA 5/28/94
#pragma check_header_flags on
#define OBSOLETE // CountAppFile() etc.
#define qMacApp 1
#define qNeedsAppleEventMgr 1
#define qNeedsEditionMgr 1
#define qNeedsHelpMgr 1
#define qNeedsProcessMgr 1
#define qNeedsAliasMgr 1
#define qNeedsFolderMgr 1
#define qNeedsSystem7 1
#define qNeedsColorQD 1
#if wantDebugging
#define qDebug 1
#define qDebugMsg 1
#define qNames 1
#define qSym 1
#define qTheDebugger 1
#define qInspector 1
#define qPerform 0 //CW can't compile with qPerform because there is an "illegal"
//computed reference between segments STRIPPADRESS - __QSTRIPADDRESS
#else
#define qDebug 0
#define qDebugMsg 0
#define qNames 0
#define qSym 0
#define qTheDebugger 0
#define qInspector 0
#define qPerform 0
#endif
#define qTemplateViews 1
#define qWriteTemplateViews 1
#ifdef powerc
#define qPowerPC 1
#else
#define qPowerPC 0
#endif
#include <Aliases.h>
#include <AppleEvents.h>
#include <AppleTalk.h>
#include <Balloons.h>
#include <ConditionalMacros.h>
#include <Controls.h>
#include <Desk.h>
#include <Devices.h>
#include <Dialogs.h>
#include <Editions.h>
#include <Errors.h>
#include <Events.h>
#include <Files.h>
#include <Fonts.h>
#include <GestaltEqu.h>
#include <Icons.h>
#include <Lists.h>
#include <LowMem.h>
#include <Memory.h>
#include <Menus.h>
#include <MixedMode.h>
#include <OSEvents.h>
#include <OSUtils.h>
#include <Packages.h>
#include <Palettes.h>
#include <Picker.h>
#include <Printing.h>
#include <Processes.h>
#include <QDOffscreen.h>
#include <Quickdraw.h>
#include <QuickdrawText.h>
#include <Resources.h>
#include <Scrap.h>
#include <Script.h>
#include <StandardFile.h>
#include <TextEdit.h>
#include <TextUtils.h>
#include <ToolUtils.h>
#include <Traps.h>
#include <Windows.h>
#include <limits.h>
#include <setjmp.h>
#include <stdarg.h>
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#if wantDebugging
//CW currently can't output to stderr. What follows is a kludge that puts the
//message in the debugger window.
#undef fprintf
#define fprintf CWfprintf
int CWfprintf(FILE * ignore, const char * format, ...);//defined in UFailure.cp
//CW currently can't call _addDevHandler. Define it to nothing for now.
#undef _addDevHandler
#define _addDevHandler(a,b,c,d,e,f,g)
#endif
#if !USESCODEFRAGMENTS
extern pascal OSErr InitEditionPackVersion()
FIVEWORDINLINE(0x3F3C, 0x0011, 0x303C, 0x0100, 0xA82D);
#endif
#if 1
#include "ObjectHeap.h"
#include "BestFitHeap.h"
#include "Geometry.h"
#include "MacAppTypes.h"
#include "MemoryHeap.h"
#include "NubInspectorHooks.h"
#include "PascalString.h"
#include "PlatformMemory.h"
#include "Toolbox.h"
#include "UAdorners.h"
#include "UAppleEvents.h"
#include "UApplication.h"
#include "UAssociation.h"
#include "UBehavior.h"
#include "UBusyCursor.h"
#include "UClassDesc.h"
#include "UClassDescIterator.h"
#include "UClipboardMgr.h"
#include "UCommand.h"
#include "UCommandHandler.h"
#include "UControl.h"
#include "UDebug.h"
#include "UDependencies.h"
#include "UDesignator.h"
#include "UDeskScrapView.h"
#include "UDialogBehavior.h"
#include "UDocument.h"
#include "UDrawingEnvironment.h"
#include "UDynamicArray.h"
#include "UErrorMgr.h"
#include "UEvent.h"
#include "UEventHandler.h"
#include "UFailure.h"
#include "UFile.h"
#include "UFileBasedDocument.h"
#include "UFileHandler.h"
#include "UGeometry.h"
#include "UIterator.h"
#include "UList.h"
#include "UListIterator.h"
#include "ULoMem.h"
#include "UMacAppGlobals.h"
#include "UMacAppUtilities.h"
#include "UMemory.h"
#include "UMenuMgr.h"
#include "Unmangler.h"
#include "UObject.h"
#include "UPatch.h"
#include "UPointerObject.h"
#include "UPopup.h"
#include "UPrintHandler.h"
#include "UScroller.h"
#include "UStream.h"
#include "UView.h"
#include "UViewServer.h"
#include "UWindow.h"
#endif